home *** CD-ROM | disk | FTP | other *** search
/ Whiteline: delta / whiteline CD Series - delta.iso / progtool / gnu / gnushell / examples / main.c < prev    next >
C/C++ Source or Header  |  1995-11-25  |  207b  |  15 lines

  1. #include <stdio.h>
  2. #include "MODUL1.H"
  3. #include "MODUL2.H"
  4.  
  5. int main(void)
  6. {
  7.   char h[] = "hello";
  8.   char w[] = "WORLD";
  9.  
  10.   Capital(h);
  11.   LowerCase(w);
  12.   printf("%s %s\n", h, w);
  13.   return 0;
  14. }
  15.